home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / prefs / overscan.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  74 lines

  1. #ifndef PREFS_OVERSCAN_H
  2. #define PREFS_OVERSCAN_H 1
  3. /*
  4. ** overscan.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for overscan.h
  17. */
  18. #ifndef OverscanPrefsPtr
  19. #define OverscanPrefsPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for overscan.h
  23. */
  24.  
  25.  
  26. /*****************************************************************************/
  27.  
  28.  
  29. #ifndef EXEC_TYPES_H
  30. #include <exec/types.h>
  31. #endif
  32.  
  33. #ifndef LIBRARIES_IFFPARSE_H
  34. #include <libraries/iffparse.h>
  35. #endif
  36.  
  37. #ifndef GRAPHICS_GFX_H
  38. #include <graphics/gfx.h>
  39. #endif
  40.  
  41.  
  42. /*****************************************************************************/
  43.  
  44.  
  45. #define ID_OSCN 1330856782 
  46.  
  47. #define OSCAN_MAGIC  &HFEDCBA89
  48.  
  49.  
  50. STRUCT OverscanPrefs
  51.  
  52.     LONGINT        os_Reserved 
  53.     LONGINT        os_Magic 
  54.     SHORTINT        os_HStart 
  55.     SHORTINT        os_HStop 
  56.     SHORTINT        os_VStart 
  57.     SHORTINT        os_VStop 
  58.     LONGINT        os_DisplayID 
  59.     _Point os_ViewPos 
  60.     _Point os_Text 
  61.     Rectangle os_Standard 
  62. END STRUCT 
  63.  
  64. /* os_HStart,  os_HStop,  os_VStart,  os_VStop can only be looked at if
  65.  * os_Magic equals OSCAN_MAGIC. If os_Magic is set to any other value, 
  66.  * these four fields are undefined
  67.  */
  68.  
  69.  
  70. /*****************************************************************************/
  71.  
  72.  
  73. #endif /* PREFS_OVERSCAN_H */
  74.